Vadim Zeitlin [Thu, 30 Mar 2023 19:18:02 +0000 (21:18 +0200)]
[PATCH] Stop using enum for integer constants in image sample
This always wasn't the best and started to result in CI failures now as
recent versions of gcc (e.g. 11.3 in Ubuntu 2.2.04) started giving
-Wdeprecated-enum-float-conversion when using REAL_SIZE in the
expressions.
Scott Talbert [Thu, 16 Jul 2026 23:08:09 +0000 (19:08 -0400)]
[PATCH] Update Unicode mapping tables to current versions
The primary motivation for this is to resolve a licensing issue with
these files (the files have been relicensed with a Debian-approved
license), but there were a few minor fixes/additions since the previous
update. The generation code/scripts required some modernization to get
it working on a current system, as well as needing to handle the format
of CP866.TXT, which is a bit different than the other files.
In practice, the differences between recent ABI versions don't seem to be
incompatible since they apparently only affect obscure corner cases. So
suppress this error so we don't have to rebuild the entire wx world in one
go.
Scott Talbert [Thu, 16 Jul 2026 23:08:09 +0000 (19:08 -0400)]
[PATCH] Update Unicode mapping tables to current versions
The primary motivation for this is to resolve a licensing issue with
these files (the files have been relicensed with a Debian-approved
license), but there were a few minor fixes/additions since the previous
update. The generation code/scripts required some modernization to get
it working on a current system, as well as needing to handle the format
of CP866.TXT, which is a bit different than the other files.
In practice, the differences between recent ABI versions don't seem to be
incompatible since they apparently only affect obscure corner cases. So
suppress this error so we don't have to rebuild the entire wx world in one
go.
* Add a d/gbp.conf file
* Update to new upstream release 3.2.11
* Update Standards-Version to 4.7.4 (no changes needed)
* Drop redundant fields from d/control
* Replace FSF postal address in d/copyright
* Add a d/upstream/metadata file
* Update lintian overrides
* Add patch to update unicode mapping tables
Olly Betts [Tue, 6 May 2025 22:00:13 +0000 (18:00 -0400)]
Suppress error about mismatching C++ ABI version
Forwarded: not-needed
Last-Update: 2022-07-18
In practice, the differences between recent ABI versions don't seem to be
incompatible since they apparently only affect obscure corner cases. So
suppress this error so we don't have to rebuild the entire wx world in one
go.
Vadim Zeitlin [Wed, 26 Oct 2022 23:48:39 +0000 (01:48 +0200)]
[PATCH] Fix drawing of icons for non-root wxTreeCtrl items
Fix y coordinate value passed to wxDC::DrawBitmap() by restoring the
parentheses accidentally removed in 6dd4e73ea3 (Add wxDrawImageBitmap()
helper and use it in wx{List,Tree}Ctrl, 2022-10-25).
Olly Betts [Fri, 24 Feb 2023 00:23:10 +0000 (19:23 -0500)]
Suppress error about mismatching C++ ABI version
Forwarded: no
Last-Update: 2022-07-18
In practice, the differences between recent ABI versions don't seem to be
incompatible since they apparently only affect obscure corner cases. So
suppress this error so we don't have to rebuild the entire wx world in one
go.
* Fix drawing of icons for non-root wxTreeCtrl items. This
effectively updates the package to v3.2.2.1 as that was the only
change in that hotfix release.